home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Emulators / v2600 / Source.lha / Source / memory.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-24  |  821 b   |  33 lines

  1. /*****************************************************************************
  2.  
  3.    This file is part of x2600, the Atari 2600 Emulator
  4.    ===================================================
  5.    
  6.    Copyright 1996 Alex Hornby. For contributions see the file CREDITS.
  7.  
  8.    This software is distributed under the terms of the GNU General Public
  9.    License. This is free software with ABSOLUTELY NO WARRANTY.
  10.    
  11.    See the file COPYING for details.
  12.  
  13.    Tweaked by Matthew Stroup for Amiga v2600, April 24, 1997.
  14.    
  15. ******************************************************************************/
  16.  
  17. /*
  18.   Prototypes for the memory interface.
  19.   */
  20.  
  21. #ifndef VCSMEMORY_H
  22. #define VCSMEMORY_H
  23.  
  24. __inline UBYTE undecRead (ADDRESS a);
  25.  
  26. void decWrite ( ADDRESS a, UBYTE b);
  27.  
  28. UBYTE decRead (ADDRESS a);
  29.  
  30. UBYTE dbgRead (ADDRESS a);
  31.  
  32. #endif
  33.